A place to document things I learned about Janet so I do not have to figure them out again...
(map tuple ["a" "b" "c"] (range 10)) # => @[("a" 0) ("b" 1) ("c" 2)]
See generators and useful generators.
values
creates an array from values returned by a fibergenerate
is an easy way to create generators using loop
syntax